home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / hf.dir / 00081_Result List.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  667 b   |  25 lines

  1. global gHFResultLastLine
  2.  
  3. on mouseDown
  4.   if the doubleClick and (the mouseLine <> -1) then
  5.     searchGoto(the mouseLine)
  6.     exit
  7.   end if
  8.   set gHFResultLastLine to -1
  9.   set mLine to the mouseLine
  10.   if mLine = -1 then
  11.     exit
  12.   else
  13.     set executeOnce to 0
  14.     repeat while the stillDown or (executeOnce = 0)
  15.       set mLine to the mouseLine
  16.       if (mLine <> gHFResultLastLine) and (mLine <> -1) then
  17.         set the foreColor of line gHFResultLastLine of field "Result List" to 255
  18.         set the foreColor of line mLine of field "Result List" to 251
  19.         set gHFResultLastLine to mLine
  20.         set executeOnce to 1
  21.       end if
  22.     end repeat
  23.   end if
  24. end
  25.